summaryrefslogtreecommitdiff
path: root/hi-ui/src/routes/(app)/ch/[channel]/+page.svelte
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-10-10 21:05:48 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-10-10 21:05:48 -0400
commit4401dce2b5545ce8117818812d8e3c8919f5f7fd (patch)
treedf04478e6094a2a8cdd14ecd31b77caacff78de6 /hi-ui/src/routes/(app)/ch/[channel]/+page.svelte
parent999996961e6e8ebcde125ff0022df875d62817b3 (diff)
Remove redundancy in `hi-ui` directory name.
Diffstat (limited to 'hi-ui/src/routes/(app)/ch/[channel]/+page.svelte')
-rw-r--r--hi-ui/src/routes/(app)/ch/[channel]/+page.svelte17
1 files changed, 0 insertions, 17 deletions
diff --git a/hi-ui/src/routes/(app)/ch/[channel]/+page.svelte b/hi-ui/src/routes/(app)/ch/[channel]/+page.svelte
deleted file mode 100644
index ef439d0..0000000
--- a/hi-ui/src/routes/(app)/ch/[channel]/+page.svelte
+++ /dev/null
@@ -1,17 +0,0 @@
-<script>
- import { afterNavigate } from '$app/navigation';
- import { page } from '$app/stores';
-
- import { activeChannel } from '$lib/store';
- import ActiveChannel from '$lib/components/ActiveChannel.svelte';
-
- afterNavigate(async () => {
- let { channel } = $page.params;
- activeChannel.update((value) => {
- value.set(channel)
- return value;
- });
- });
-</script>
-
-<ActiveChannel />